home *** CD-ROM | disk | FTP | other *** search
- // wsotst1.cpp: This program displays a single pop-up window
-
- #include "wsotxscr.h"
-
- Wso *Window1;
-
- main()
- {
- Setup(MouseOptional,MonoColors); // Setup the environment
- Window1 = new Wso(0x11, WindowStyle+Stretchable, RedColors);
- FullScrn->Panel->Clear(176,0); // Clear the full screen
- Window1->SetSize(30, 10);
- Window1->Open(FullScrn, 5, 5); // Open the window on the screen
- MainEventLoop(); // The event loop takes over
- CleanUp(); // Remove all the objects
- }
-